home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960425-19960715 / 000325_news@columbia.edu _Fri Jun 28 14:29:50 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id OAA15164 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 28 Jun 1996 14:29:50 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id OAA13796 for kermit.misc@watsun; Fri, 28 Jun 1996 14:29:48 -0400 (EDT)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!spool.mu.edu!sgigate.sgi.com!uhog.mit.edu!news.mathworks.com!newsfeed.internetmci.com!zdc!zippo!drn
  5. From: SAM@columbia.edu, Chi-Kin@columbia.edu
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Zmodem and Kermit.
  8. Date: 28 Jun 1996 06:51:11 -0700
  9. Organization: Tecnologia Electronica Hermes
  10. Lines: 75
  11. Message-ID: <4r0o0f$a5s@doc.zippo.com>
  12. References: <31C86923.4868@genmagic.com> <31CAFD40.30ED@macau.ctm.net> <31D2DB15.660F@genmagic.com>
  13. NNTP-Posting-Host: 202.174.0.109
  14.  
  15. In article <31D2DB15.660F@genmagic.com>, William says...
  16. >
  17. >I have C-Kermit 5A(190) and a new version of the rz/sz whic I got from ohmen.com.
  18. >
  19. >I do the following:
  20. >
  21. >set modem hayes
  22. >set line /dev/tty00
  23. >set baud 9600
  24. >dial ########
  25. >connect
  26. >
  27. >(Go through the login stuff by hand and start a ZMODEM send from THAT end, I am getting the 
  28. >files.)
  29. >
  30. >^\c
  31. >!sz -L1024 -b      
  32. >                 This results in "/dev/ttypa permission denied"
  33. >!sz -L1024 -b < /dev/tty00 > /dev/tty00           
  34. >                 This results in "/dev/ttypa permission denied"
  35. >
  36. >
  37. >Am I doing something wrong?
  38. >
  39. >TIA
  40. >-bill
  41. >
  42. >SAM, Chi-Kin wrote:
  43. >> 
  44. >> William Mills wrote:
  45. >> >
  46. >> > It used to be possible when rz was a friendlier package to
  47. >...snip...
  48. >> 
  49. >> The SZRZ can be called within C-kermit in Sun OS, in fact I have the following line in
  50. >> my .kermrc:
  51. >> 
  52. >> define autosz1 apc rz1, !sz -L1024 -b \%1 \%2 \%3 \%4
  53. >> 
  54. >> In fact, this macro also initial the auto receive of z-modem transfer by my MS-kermit,
  55. >> so if you would want to go so complicated, you can initial sz tranfer, after enter
  56. >> C-kermit by:
  57. >> 
  58. >> !sz <filename>
  59. >> 
  60. >> Note: above method need the exist of the sz/rz program.
  61. >> 
  62. >> Cheers,
  63. >>    --SAM
  64. >> --
  65.  
  66. Oh, you need to put the filename in the sz command line, suppose you want to
  67. send a binary file called aa-prog.exe, then the format should be as follow:
  68.  
  69. !sz -b aa-prog.exe
  70.  
  71. -b for binary transfer
  72.  
  73. If you line condition is very clean, than you may try to force long packet
  74. in following way:
  75.  
  76. !sz -L1024 -b aa-prog.exe
  77.  
  78. If you don't put filename in the sz command line which I believe the sz
  79. would for the terminal port as a file and cause the permission denied
  80. fault.
  81.  
  82. BTW, the filename can be a group of files:
  83.  
  84. !sz -b *.exe
  85.  
  86.  
  87.  
  88. Cheers,
  89.    --SAM